home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / programming / oracle7 7.2 / INSTALL / USER.PIN < prev    next >
Encoding:
Text File  |  1995-09-25  |  1.3 KB  |  38 lines

  1. /* Copyright (c) Oracle Corporation 1994.  All Rights Reserved */
  2.  
  3. /*****************************************************************************
  4.   NAME
  5.     user.pin - custom post-install script
  6.  
  7.   DESCRIPTION
  8.     This script is a post-install script for scripters' use
  9.  
  10.   MODIFIED      MM/DD/YY    Reason
  11.   zzerhoun      12/30/94    Remove user.pin after use
  12.   zzerhoun      12/28/94    Executes shut down script if not custom install
  13.   akelley       09/29/94    Added "In case of floppy" section from MINg's file
  14.   bsabol        08/17/94    Modified
  15.   bsabol        04/23/94    Created
  16. *****************************************************************************/
  17. {
  18.   if (user_action == 'install)
  19.   {
  20.     { install_type = install_type; }
  21.     ['UNBOUND_VARIABLE: install_type = "Custom";]
  22.  
  23.     { execute("%installer_home%\%operating_system%.pin");}
  24.     if (install_type == "Custom")
  25.       signal('success,instantiate(installation_complete));
  26.     else if (empty(remind_list))
  27.       signal('success,instantiate(installation_complete));
  28.     else
  29.       information_dialog(instantiate(installation_complete),'NO_CANCEL);
  30.  
  31.     if (install_type != "Custom")
  32.     { execute("%installer_home%\%operating_system%.shd");}
  33.     [ 'default: continue();]
  34.  
  35.     remove_file("%installer_home%\user.pin");
  36.   }
  37. }
  38.